home *** CD-ROM | disk | FTP | other *** search
- // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
- // see COPYRIGHT for reuse legalities
- //
-
- @protocol WWSample
-
- // need to get the weight info from the run-time system by giving it
- // the name of the generator and getting back the weight...
- - setData:newData timestamp:(float)floatTime generator:(const char *)genName weight:(float)floatWeight;
- - (float)timestamp;
- - setFreeData:(BOOL)flag;
- - (BOOL)freeData;
- - sample;
- - data;
- - setWeight:(float)newWeight;
- - (float)weight;
- - (int)generatorCount;
- - (const char *)generatorName;
-
- - writeEve:(NXStream *)stream atTabLevel:(int)tab;
-
- // boy, is this retarded or what?
- - class;
- - free;
- - (BOOL) conformsTo: (Protocol *)aProtocolObject;
-
- @end
-